home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n08
/
wrksmt.exe
/
LIB.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-07-10
|
391b
|
19 lines
@ECHO OFF
ECHO This batch file lets you label
ECHO a floppy and sorts and copies
ECHO its directory into a file called
ECHO DIRSORT.DOC in your word processor.
:START
ECHO Put the floppy in drive A:...
PAUSE
CLS
DIR A:/W
LABEL A:
DIR A:|SORT >> C:\WP\DIRSORT.DOC
CLS
ECHO Disk cataloged--Press Ctrl-C
ECHO to end or any key to catalog
ECHO another floppy.
PAUSE
GOTO START